@charset "utf-8";
/* CSS Document */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-thumb {
    background-color: #2c5daf;
}
::-webkit-scrollbar-track {
    background-color: #ddd;
}
::-webkit-scrollbar-thumb:horizontal {
    background-color: #2b2b2b;
}
::-webkit-scrollbar-track:horizontal {
    background-color: #2b2b2b;
}
::-webkit-scrollbar-corner {
    background-color: #2b2b2b;
}
*{
	box-sizing: border-box;
	outline: none;
}
html, body{
	width:100%;
	height: 100%;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}
body {
	font-family: 'Noto Sans SC', Arial, "Microsoft YaHei", sans-serif;
	font-weight: 300;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%; /*修正手持设备字体变化*/
	-webkit-text-size-adjust: none;
	margin: 0px;
	padding: 0px;
}
body, td, th {
	color:#2b2b2b;
	line-height: 26px;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Noto Sans SC', Arial, "Microsoft YaHei", sans-serif;
	font-weight: 300;
	font-size: 100%;
}
address, caption, cite, code, dfn, em, th, var {
	font-style: normal;
	font-family: 'Noto Sans SC', Arial, "Microsoft YaHei", sans-serif;
	font-weight: 300;
}
img {
	border: none;
}
ol, ul, li {
	list-style: none;
}
input, textarea, select, button {
	font-family: 'Noto Sans SC', Arial, "Microsoft YaHei", sans-serif;
	font-size: 16px;
}
input, textarea, select {
    *font-size:100%;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a{
	color:#2b2b2b;
	text-decoration:none;
	-webkit-transition:all 200ms linear;
    -moz-transition:all 200ms linear;
    -o-transition:all 200ms linear;
    transition:all 200ms linear;
}
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	color: #2c5daf;
}
a:active {
	text-decoration: none;
}
dl, dd, dt {
	margin: 0px;
	padding: 0px;
}
/* css common */
.rel {
    position: relative;
}
.clearfix:before, .clearfix:after {
	content: "";
	display: table;
}
.clearfix:after {
	clear: both;
	overflow: hidden;
}
.clearfix {
    *zoom: 1;
}
.lt, .left {
	float: left;
}
.rt, .right {
	float: right;
}
.clear, .clr {
	clear: both;
}
.f-cb{
    zoom:1;
}
.f-cb:after{
    display:block;
    height:0;
    clear:both;
    visibility:hidden;
    overflow:hidden;
    content:".";
}
.fl {
    float:left;
    display: inline;
}
.fr {
    float:right;
    display: inline;
}
.por{
    position: relative;
}
.poa{
    position: absolute;
}
.poa-f{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.ovh{
    overflow: hidden;
}
.noselect{
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
.z1{
    z-index: 1;
}
.z2{
    z-index: 2;
}
.z3{
    z-index: 3;
}
.dn{
    display: none;
}
.width-full{
    width: 100%;
}
.height-full{
    height: 100%;
}
.dib{
    display: inline-block;
}
.wrap{
	width: 84%;
	margin:0 auto;
}
.indent{
	text-indent: 2em;
}
@media (max-width: 1480px) {
	body, td, th {
		font-size: 14px;
		line-height: 24px;
	}
	input, textarea, select, button{
		font-size: 14px;
	}
	.wrap{
		width: 94%;
		margin:0 auto;
	}
}
@media (max-width: 992px){
}
@media (max-width: 750px){
}

/* Header */
header{
	width: 100%;
	background: #fff;
	transition: transform .3s cubic-bezier(1, 0, 0, 1);
    -webkit-backface-visibility: hidden;
    display: flex;
    justify-content: space-between;
	align-items: center;
	z-index: 1000;
	position: fixed;
	top: 0;
}
header.fixed, 
header.on{
	
}
header > .wrap{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
header .menu-trigger{
	display: none;
}
header .menu-trigger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #2b2b2b;
    margin-bottom: 5px;
    transition: .3s;
}
header .menu-trigger span:last-of-type {
    margin-bottom: 0;
}
header .menu-trigger.active span:nth-of-type(1) {
    transform: rotate(45deg);
    transform-origin: left center;
}
header .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}
header .menu-trigger.active span:nth-of-type(3) {
    transform: rotate(-45deg);
    transform-origin: left center;
}
header .logo{
	width: 220px;
	height: 80px;
	display: flex;
	align-items: center;
	transition: transform .3s cubic-bezier(1, 0, 0, 1);
    -webkit-backface-visibility: hidden;
}
header.fixed .logo,
header.on .logo{
	height: 60px;
}
header .logo img{
	width: 100%;
	display: block;
	transition: transform .3s cubic-bezier(1, 0, 0, 1);
    -webkit-backface-visibility: hidden;
}
header.fixed .logo, 
header.on .logo{
	width: 160px;
}
header .header-menu{
	width: calc(100% - 420px);
	padding:0 40px 0 100px;
	text-align: center;
	position: relative;
	transition: transform .3s cubic-bezier(1, 0, 0, 1);
    -webkit-backface-visibility: hidden;
}
header .header-menu .line{
	width: 100%;
	height: 1px;
	background: #eee;
	position: fixed;
	top:79px;
	left: 0;
	display: none;
	opacity: 0;
	visibility: hidden;
	transition: transform .3s cubic-bezier(1, 0, 0, 1);
    -webkit-backface-visibility: hidden;
}
header.fixed .header-menu .line,
header.on .header-menu .line{
	top:59px;
}
header .header-menu:hover .line{
	display: block;
	opacity: 1;
	visibility: visible;
}
header .header-menu a{
    display: block;
    text-transform: uppercase;
}
header .header-menu > ul{
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}
header .header-menu > ul > li{
	float: left;
	position: relative;
}
header .header-menu > ul > li > a{
	font-size: 18px;
	line-height: 80px;
	position: relative;
	padding:0 6px;
}
header.fixed .header-menu > ul > li > a,
header.on .header-menu > ul > li > a{
	line-height: 60px;
}
header .header-menu > ul > li > a:after{
	content: "";
	width: 100%;
	height: 2px;
	position: absolute;
	background: #2c5daf;
	bottom: 0;
	left:0;
	transform-origin: center;
    transform: scale(0, 1);
    transition: transform .3s cubic-bezier(1, 0, 0, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
header .header-menu > ul > li:hover > a, 
header .header-menu > ul > li.hover > a, 
header .header-menu > ul > li.current > a{
	color: #2c5daf;
}
header .header-menu > ul > li:hover > a:after, 
header .header-menu > ul > li.hover > a:after, 
header .header-menu > ul > li.current > a:after{
	transform-origin: center;
    transform: scale(1);
}
header .header-menu > ul > li > ul{
	height: calc(100% - 80px);
	padding:20px 0 120px 0;
	display: none;
	opacity: 0;
	visibility: hidden;
}
header.fixed .header-menu > ul > li > ul,
header.on .header-menu > ul > li > ul{
	height: calc(100% - 60px);
}
header .header-menu > ul:hover > li > ul{
	display: block;
	opacity: 1;
	visibility: visible;
}
header .header-menu > ul > li:hover > ul{
	background: #2c5daf;
}
header .header-menu > ul > li > ul > li:hover{
	background: #fff;
}
header .header-menu > ul > li > ul > li > a{
	line-height: 36px;
	padding:0 6px;
}
header .header-menu > ul > li:hover > ul > li > a{
	color: #fff;
}
header .header-menu > ul > li > ul > li:hover > a{
	color: #2c5daf;
}
header .header-tel{
	width: 200px;
	height: 80px;
	display: flex;
	align-items: center;
	transition: transform .3s cubic-bezier(1, 0, 0, 1);
    -webkit-backface-visibility: hidden;
}
header.fixed .header-tel,
header.on .header-tel{
	height: 60px;
}
header .header-tel a{
	width: 100%;
	height: 36px;
	color:#fff;
	display: flex;
	background: #2c5daf;
	font-size: 18px;
	text-align: center;
	align-items: center;
	justify-content: center;
}
header .header-tel i{
	font-size: 24px;
	margin-right: 6px;
}
.overlay {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9998;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    display: none;
}
@media (max-width: 1480px){
	header .header-menu > ul > li > a{
		font-size: 16px;
	}
}
@media (max-width: 1280px) {
	.overlay{
		top:60px;
		height: calc(100% - 60px);
	}
	header{
		height: 60px;
	}
	header > .wrap{
		align-items: center;
	}
	header .logo,
	header.fixed .logo, 
    header.on .logo{
    	width: auto;
    }
    header .logo img,
	header.fixed .logo img, 
    header.on .logo img{
    	width: auto;
    	height: 42px;
    }
	header .header-menu,
	header .header-tel{
		display: none;
	}
	header .header-menu .line{
		display: none;
	}
	header .menu-trigger{
		display: block;
	}
	header .menu-trigger.active{
		
	}
}
@media (max-width: 992px) {	
}
@media (max-width: 750px) {
	.overlay{
		top:48px;
		height: calc(100% - 48px);
	}
	header{
		height: 48px;
	}
	header .logo img,
	header.fixed .logo img, 
    header.on .logo img{
    	height: 36px;
    }
}

/* Subnav */
.subnav{
	position: fixed;
    width: 200px;
    height: calc(100% - 60px);
    right: -200px;
    top: 60px;
    overflow-x: visible;
	overflow-y: auto;
	-webkit-overflow-scrolling : touch;
    background: #2c5daf;
    color: #fff;
    z-index: 9999;
    transition: .3s;
}
.subnav.active {
    right: 0;
}
.subnav a{
	color: #fff;
}
.subnav .menu-box{
	text-transform: uppercase;
}
.subnav .menu-box > ul > li > a {
    display: block;
    color: #fff;
    padding:0 10px;
    position: relative;
    line-height: 40px;
}
.subnav .menu-box > ul > li > a > i{
	font-size: 12px;
}
.subnav .menu-box > ul > li > ul {
    background: #3465b7;
    padding: 5px 0;
}
.subnav .menu-box > ul > li > ul > li > a {
    display: block;
    padding:0 10px;
    line-height: 30px;
}
@media (max-width: 1280px) {
	
}
@media (max-width: 992px) {	

}
@media (max-width: 750px) {
	.subnav{
		top:48px;
		height: calc(100% - 48px);
    }
}

/* Footer */
footer{
	width: 100%;
	overflow: hidden;
}
footer .box1{
	display: flex;
}
footer .box1 ul{
	display: flex;
}
footer .box1 a{
	display: block;
	position: relative;
	color: #fff;
}
footer .box1 img{
	width: 100%;
	display: block;
}
footer .box1 .word{
	position: absolute;
	top:50%; 
	left:50%;
	transform: translate(-50%, -50%);
	padding:50px 50px 75px 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex-direction: column;
}
footer .box1 .word h1{
	font-size: 30px;
}
footer .box1 .word h2{
	margin:20px 0 30px 0;
}
footer .box1 .word h3{
	width: 126px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url(../images/kuang.png) no-repeat center;
	background-size: cover;
	-webkit-transition:all 200ms linear;
    -moz-transition:all 200ms linear;
    -o-transition:all 200ms linear;
    transition:all 200ms linear;
}
footer .box1 .word h3:hover{
	background: #2c5daf;
}
footer .box2{
	width: 100%;
	color: #fff;
	position: relative;
	z-index: 1;
	margin-top: -50px;
	overflow: hidden;
}
footer .box2 a{
	color: #fff;
}
footer .box2 .div1{
	background: #fff;
	height: 100px;
	padding:0 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 1;
}
footer .box2 .div1 .left ul{
	display: flex;
}
footer .box2 .div1 .left li{
	margin-right: 100px;
	display: flex;
	color: #2b2b2b;
	align-items: center;
}
footer .box2 .div1 .left li:last-child{
	margin-right: 0;
}
footer .box2 .div1 .left li.tel{
	color: #2c5cad;
	font-size: 24px;
}
footer .box2 .div1 .left em{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    margin-right: 14px;
    font-size: 20px;
    color: #2b2b2b;
}
footer .box2 .div1 .right > div{
	display: flex;
}
footer .box2 .div1 .right a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #d9d9d9;
	margin:0;
	margin-left: 6px;
	padding:0;
	text-decoration: none;
}
footer .box2 .div1 .right a:hover{
	background: #2c5daf;
}
.bsBox{
	box-sizing: content-box;
}
footer .box2 .div2{
	width: 100%;
	background: #2c5daf;
	margin-top: -60px;
}
footer .box2 .div2 .footer-nav{
	padding:130px 0 170px 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
footer .box2 .div2 .footer-nav .nav{
	width: calc(92% - 230px);
}
footer .box2 .div2 .footer-nav .nav a{
	display: block;
}
footer .box2 .div2 .footer-nav .nav > ul{
    display: flex;
    justify-content: space-between;
}
footer .box2 .div2 .footer-nav .nav > ul > li > a{
	font-size: 18px;
	display: flex;
}
footer .box2 .div2 .footer-nav .nav > ul > li > a > span{
	font-size: 28px;
	font-weight: 700;
	margin-right: 6px;
}
footer .box2 .div2 .footer-nav .nav > ul > li > ul{
	margin-top: 10px;
	line-height: 36px;
	padding-left: 14px;
}
footer .box2 .div2 .footer-nav .contact{
	width: 230px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
footer .box2 .div2 .footer-nav .contact h2{
	margin:0 10px;
}
footer .box2 .div2 .footer-nav .contact img{
	display: block;
}
footer .box2 .div2 .footer-copy{
	width: 100%;
	border-top: 1px solid rgba(255, 255, 255, .3);
	padding:36px 0;
	text-transform: uppercase;
	overflow: hidden;
}
@media (max-width: 1280px) {
	footer .box1 .word{
		padding:30px 3% 50px 3%;
	}
	footer .box1 .word h1{
		font-size: 24px;
	}
	footer .box1 .word h2{
        display: none;
	}
	footer .box1 .word h3{
		width: 110px;
		height: 37px;
		margin-top: 20px;
	}
	footer .box2{
		margin-top: -40px;
	}
	footer .box2 .div1{
		height: 80px;
		padding:0 3%;
	}
	footer .box2 .div1 .left li{
	   margin-right: 30px;
	   word-break:keep-all;
       white-space:nowrap; 
	}
	footer .box2 .div1 .left li.tel{
		font-size: 18px;
	}
	footer .box2 .div1 .left em{
	    width: 32px;
	    height: 32px;
	    box-shadow: 0 0 3px rgba(0, 0, 0, .2);
	    margin-right: 14px;
	}
	footer .box2 .div1 .right a{
		margin-left: 4px;
	}
	footer .box2 .div2{
		margin-top: -40px;
	}
	footer .box2 .div2 .footer-nav{
		padding:40px 0 10% 0;
	}
	footer .box2 .div2 .footer-nav .nav{
		width: calc(96% - 230px);
	}
	footer .box2 .div2 .footer-nav .nav > ul > li{
		margin-top: 6%;
	}
	footer .box2 .div2 .footer-nav .nav > ul > li > a{
		font-size: 14px;
	}
	footer .box2 .div2 .footer-nav .nav > ul > li > a > span{
		font-size: 24px;
		margin-right: 4px;
	}
	footer .box2 .div2 .footer-nav .nav > ul > li > ul{
		line-height: 32px;
		padding-left: 6px;
	}
	footer .box2 .div2 .footer-copy{
		padding:3% 0;
	}
}
@media (max-width: 992px) {
	footer .box1 .word{
		padding:10px 3% 25px 3%;
	}
	footer .box1 .word h1{
		font-size: 18px;
	}
	footer .box1 .word h3{
		width: 90px;
		height: 30px;
		margin-top: 10px;
	}
	footer .box2{
		margin-top: -30px;
	}
	footer .box2 .div1{
		height: 60px;
	}
	footer .box2 .div1 .left li{
		margin-right: 20px;
	}
	footer .box2 .div2{
	    margin-top: -30px;
	}
	footer .box2 .div2 .footer-nav{
		flex-direction: column;
		padding-top: 30px;
	}
	footer .box2 .div2 .footer-nav .nav,
	footer .box2 .div2 .footer-nav .contact{
		width: 100%;
	}
	footer .box2 .div2 .footer-nav .nav > ul{
		flex-wrap: wrap;
		justify-content:flex-start;
	}
	footer .box2 .div2 .footer-nav .nav > ul > li{
		flex:32%;
	}
	footer .box2 .div2 .footer-nav .nav > ul > li > ul{
		margin-top: 0;
		line-height: 28px;
	}
	footer .box2 .div2 .footer-nav .contact{
		align-items: center;
		justify-content: center;
		margin-top: 8%;
	}
	footer .box2 .div2 .footer-copy{
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
	}
}
@media (max-width: 750px) {
    footer .box1 a{
        height: 150px;
    }
    footer .box1 a img{
    	width: 100%;
    	height: 100%;
    	object-fit: cover;
    }
    footer .box1 .word{
    	padding-top: 0;
    }
    footer .box1 .word h1{
        font-size: 16px;
	}
	footer .box1 .word h3{
		width: 80px;
		height: 27px;
		font-size: 12px;
	}
    footer .box2 .div1 {
	    height: auto;
	    padding:3%;
	}
	footer .box2 .div1 .left li{
		display: none;
	}
	footer .box2 .div1 .left li.tel{
		display: flex;
		font-size: 16px;
	}
	footer .box2 .div1 .left li.tel em{
		width: 24px;
		height: 24px;
		font-size: 14px;
	}
	footer .box2 .div1 .right a{
		width: 24px;
		height: 24px;
		font-size: 14px;
	}
}